home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / pcmagdoc.arc / SNAPSHOT.DOC < prev    next >
Encoding:
Text File  |  1988-01-19  |  2.4 KB  |  52 lines

  1.  
  2.           SNAPSHOT                                Steven Holzner
  3.           Command (after running .BAS version)PC Magazine Vol4, No 14
  4.         Copyright 1985 Ziff-Davis Publishing Company
  5.           ______________________________________________________
  6.  
  7.           Purpose:  Saves your current screen and up to three
  8.                     additional prefabricated screens for
  9.                     immediate display without leaving an
  10.                     application program.
  11.  
  12.           Format:   SNAPSHOT     (loads memory-resident program)
  13.                     <Ctrl-N>             (stores current screen)
  14.                     <Ctrl-F>            (displays stored screen)
  15.                     <Ctrl-A>             (displays screen A.DAT)
  16.                     <Ctrl-B>             (displays screen B.DAT)
  17.                     <Ctrl-C>             (displays screen C.DAT)
  18.  
  19.           Remarks:  SNAPSHOT is a memory-resident utility that is
  20.                     incompatible with programs (such as XyWrite)
  21.                     that take control of the keyboard interrupts.
  22.                     While written in assembly languge, it is
  23.                     presented here with a BASIC interface that
  24.                     need be run only once, but which facilitates
  25.                     entering the trigger keys you will use to
  26.                     store the current screen, recall it, and to
  27.                     recall up to three screens you can prepare
  28.                     with an ASCII word processor and store under
  29.                     the filenames A.DAT, B.DAT, and C.DAT.
  30.  
  31.                     When you load and run SNAPSHOT.BAS under
  32.                     BASIC you will be prompted for the required
  33.                     key selections.  Thereafter the program will
  34.                     create SNAPSHOT.COM (it takes about two
  35.                     minutes), which is a regular DOS command.
  36.  
  37.  
  38.           Option 1: If your regular word processor is WordStar,
  39.                     before running SNAPSHOT.BAS you should edit
  40.                     it as follows:
  41.  
  42.                     1. In line 30, change the checksum shown from
  43.                     51461 to 51462.
  44.  
  45.                     2. In line 430, change the third number (just
  46.                     to the left of the -2) from 0 to 1.
  47.  
  48.                     The purpose of these changes is to provide a
  49.                     "stripper" function so that WordStar files
  50.                     will be readable from other applications.
  51.  
  52.